            /********** Template CSS **********/
            
             :root {
                --primary: #1eb139;
                --secondary: #5F656F;
                --light: #F5F5F5;
                --dark: #1eb139;
            }
            
            .navbar-light .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
            
            .navbar-light .navbar-toggler {
                border-color: #1eb139 !important;
                background: #1eb139;
                color: #1eb139 !important;
            }
            
            .bg-primary {
                display: none;
            }
            
            .back-to-top {
                position: fixed;
                display: none;
                right: 30px;
                bottom: 30px;
                z-index: 99;
            }
            
            h1,
            .h1,
            h2,
            .h2,
            h3,
            .h3,
            h4,
            .h4,
            h5,
            .h5,
            h6,
            .h6 {
                color: #000
            }
            
            .bg-dark {
                background-color: #1eb139 !important;
            }
            
            .footer {
                background-color: #0a9622 !important;
            }
            
            .copyright {
                background-color: #0a9622 !important;
            }
            
            h1,
            h2,
            .h1,
            .h2,
            .fw-bold {
                font-weight: 700 !important;
            }
            
            h3,
            h4,
            .h3,
            .h4,
            .fw-medium {
                font-weight: 600 !important;
            }
            
            h5,
            h6,
            .h5,
            .h6,
            .fw-semi-bold {
                font-weight: 500 !important;
            }
            /*** Spinner ***/
            
            #spinner {
                opacity: 0;
                visibility: hidden;
                transition: opacity .5s ease-out, visibility 0s linear .5s;
                z-index: 99999;
            }
            
            #spinner.show {
                transition: opacity .5s ease-out, visibility 0s linear 0s;
                visibility: visible;
                opacity: 1;
            }
            /*** Button ***/
            
            .btn {
                transition: .5s;
                font-weight: 500;
            }
            
            .btn-primary,
            .btn-outline-primary:hover {
                color: #FFFFFF;
            }
            
            .btn-square {
                width: 38px;
                height: 38px;
            }
            
            .btn-sm-square {
                width: 32px;
                height: 32px;
            }
            
            .btn-lg-square {
                width: 48px;
                height: 48px;
            }
            
            .btn-square,
            .btn-sm-square,
            .btn-lg-square {
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: normal;
            }
            
            .topbar-right {
                position: relative;
                background: #1eb139;
            }
            
            .text-white {
                color: #fff !important;
            }
            /*

.wow img{
    width: 100%;
        height: 200px;
    background-size: cover;
}

*/
            
            .topbar-right::before {
                position: absolute;
                content: "";
                width: 30px;
                height: 100%;
                top: 0;
                left: -15px;
                transform: skewX(-30deg);
                background-color: #1eb139;
            }
            /*** Navbar ***/
            
            .navbar.sticky-top {
                top: -100px;
                transition: .5s;
            }
            
            .navbar .navbar-brand {
                position: relative;
                padding-right: 50px;
                height: 75px;
                display: flex;
                background: #fff;
                width: 250px;
            }
            
            .navbar {
                background-color: #fff !important;
            }
            
            .navbar .navbar-brand::after {
                position: absolute;
                content: "";
                width: 50px;
                height: 100%;
                top: 0;
                right: -25px;
                transform: skewX(-30deg);
                background-color: #fff;
            }
            
            .navbar .navbar-nav .nav-link {
                margin-right: 35px;
                padding: 20px 0;
                color: #000;
                font-size: 18px;
                font-weight: 500;
                outline: none;
            }
            /*

.navbar .navbar-brand img {
    width: 100%;
}

*/
            
            .navbar .navbar-nav .nav-link:hover,
            .navbar .navbar-nav .nav-link.active {
                color: #1eb139;
            }
            
            .navbar .dropdown-toggle::after {
                border: none;
                content: "\f107";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                vertical-align: middle;
                margin-left: 8px;
            }
            
            @media (max-width: 991.98px) {
                .navbar .navbar-nav .nav-link {
                    margin-right: 0;
                    padding: 10px 0;
                }
                .navbar .navbar-nav {
                    border-top: 1px solid #EEEEEE;
                }
            }
            
            @media (min-width: 992px) {
                .navbar .nav-item .dropdown-menu {
                    display: block;
                    border: none;
                    margin-top: 0;
                    top: 150%;
                    opacity: 0;
                    visibility: hidden;
                    transition: .5s;
                }
                .navbar .nav-item:hover .dropdown-menu {
                    top: 100%;
                    visibility: visible;
                    transition: .5s;
                    opacity: 1;
                }
                .carousel-caption h1 {
                    font-size: 30px !important;
                }
            }
            /*** Header ***/
            
            .carousel-caption {
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                align-items: center;
                background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
                z-index: 1;
            }
            
            .carousel-caption h1 {
                font-size: 45px !important;
                max-width: 80%;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 15%;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 3.5rem;
                height: 3.5rem;
                background-color: var(--primary);
                border: 15px solid var(--primary);
                border-radius: 3.5rem;
            }
            
            @media (max-width: 768px) {
                #header-carousel .carousel-item {
                    position: relative;
                    min-height: 450px;
                }
                #header-carousel .carousel-item img {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .carousel-caption h1 {
                    font-size: 30px !important;
                }
            }
            
            .page-header {
                background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/image.png) center center no-repeat;
                background-size: cover;
            }
            
            .page-header .breadcrumb-item+.breadcrumb-item::before {
                color: var(--light);
            }
            
            .text-start p {
                font-size: 20px;
                font-weight: normal !important;
                max-width: 80%;
            }
            
            .page-header .breadcrumb-item,
            .page-header .breadcrumb-item a {
                font-size: 18px;
                color: var(--light);
            }
            /*** Facts ***/
            
            .facts {
                position: relative;
                margin: 6rem 0;
                background: #0f9b28;
            }
            
            .facts .border {
                border-color: rgba(255, 255, 255, .1) !important;
            }
            /*** Features ***/
            
            .btn-play {
                position: absolute;
                top: 50%;
                right: -30px;
                transform: translateY(-50%);
                display: block;
                box-sizing: content-box;
                width: 16px;
                height: 26px;
                border-radius: 100%;
                border: none;
                outline: none !important;
                padding: 18px 20px 20px 28px;
                background: var(--primary);
            }
            
            @media (max-width: 992px) {
                .btn-play {
                    left: 50%;
                    right: auto;
                    transform: translate(-50%, -50%);
                }
            }
            
            .btn-play:before {
                content: "";
                position: absolute;
                z-index: 0;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: 60px;
                height: 60px;
                background: var(--primary);
                border-radius: 100%;
                animation: pulse-border 1500ms ease-out infinite;
            }
            
            .btn-play:after {
                content: "";
                position: absolute;
                z-index: 1;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: 60px;
                height: 60px;
                background: var(--primary);
                border-radius: 100%;
                transition: all 200ms;
            }
            
            .btn-play span {
                display: block;
                position: relative;
                z-index: 3;
                width: 0;
                height: 0;
                left: -1px;
                border-left: 16px solid #FFFFFF;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }
            
            @keyframes pulse-border {
                0% {
                    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                    opacity: 1;
                }
                100% {
                    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
                    opacity: 0;
                }
            }
            
            .modal-video .modal-dialog {
                position: relative;
                max-width: 800px;
                margin: 60px auto 0 auto;
            }
            
            .modal-video .modal-body {
                position: relative;
                padding: 0px;
            }
            
            .modal-video .close {
                position: absolute;
                width: 30px;
                height: 30px;
                right: 0px;
                top: -30px;
                z-index: 999;
                font-size: 30px;
                font-weight: normal;
                color: #FFFFFF;
                background: #000000;
                opacity: 1;
            }
            /*** Service ***/
            
            .service-item {
                position: relative;
                margin: 65px 0 25px 0;
                box-shadow: 0 0 45px rgba(0, 0, 0, .07);
                height: 370px;
            }
            
            .service-item .service-img {
                position: absolute;
                padding: 12px;
                width: 250px;
                top: -65px;
                left: 50%;
                transform: translateX(-50%);
                background: #FFFFFF;
                box-shadow: 0 0 45px rgba(0, 0, 0, .09);
                z-index: 2;
            }
            
            .service-item .service-detail {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                overflow: hidden;
                z-index: 1;
            }
            
            .service-item .service-title {
                position: absolute;
                padding: 145px 30px 25px 30px;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: #FFFFFF;
                transition: .5s;
            }
            
            .service-item:hover .service-title {
                top: -100%;
            }
            
            .service-item .service-text {
                position: absolute;
                overflow: hidden;
                padding: 65px 30px 25px 30px;
                width: 100%;
                height: 100%;
                top: 100%;
                left: 0;
                display: flex;
                align-items: center;
                text-align: center;
                background: rgba(2, 36, 91, .7);
                transition: .5s;
            }
            
            .service-item:hover .service-text {
                top: 0;
            }
            
            .service-item .service-text::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100px;
                top: -100%;
                left: 0;
                transform: skewY(-12deg);
                background: #FFFFFF;
                transition: .5s;
            }
            
            .service-item:hover .service-text::before {
                top: -55px;
            }
            
            .service-item .btn {
                position: absolute;
                width: 130px;
                height: 50px;
                left: 50%;
                bottom: -25px;
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000;
                background: #1fb239;
                border: none;
                box-shadow: 0 0 45px rgba(0, 0, 0, .09);
                z-index: 2;
            }
            
            .service-item .btn:hover {
                color: #FFFFFF;
                background: var(--primary);
            }
            /*** Project ***/
            
            .project-carousel {
                position: relative;
                background: var(--dark);
            }
            
            .project-item {
                position: relative;
                display: block;
            }
            
            .project-item img {
                transition: .5s;
            }
            
            .project-item:hover img,
            .project-carousel .owl-item.center img {
                margin-top: -60px;
            }
            
            .project-item .project-title {
                position: absolute;
                padding: 0 15px;
                width: 100%;
                height: 80px;
                bottom: -110px;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: var(--dark);
                transition: .5s;
            }
            
            .project-item:hover .project-title,
            .project-carousel .owl-item.center .project-title {
                bottom: -60px;
            }
            
            .project-item .project-title::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 30px;
                top: -15px;
                left: 0;
                transform: skewY(-5deg);
                background: var(--dark);
                transition: .5s;
            }
            
            .project-carousel .owl-nav {
                position: absolute;
                width: 100%;
                height: 45px;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                display: flex;
                justify-content: space-between;
                transition: .5s;
                opacity: 0;
                z-index: 1;
            }
            
            .project-carousel:hover .owl-nav {
                opacity: 1;
            }
            
            .project-carousel .owl-nav .owl-prev,
            .project-carousel .owl-nav .owl-next {
                margin: 0 30px;
                width: 45px;
                height: 45px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #FFFFFF;
                background: var(--primary);
                border-radius: 45px;
                font-size: 22px;
                transition: .5s;
            }
            /*** Team ***/
            
            .team-item .team-social {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: -100%;
                display: flex;
                align-items: center;
                background: var(--primary);
                transition: .5s;
            }
            
            .team-item:hover .team-social {
                left: 0;
            }
            /*** Testimonial ***/
            
            .testimonial-carousel::before {
                position: absolute;
                content: "";
                top: 0;
                left: 0;
                height: 100%;
                width: 0;
                background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                z-index: 1;
            }
            
            .testimonial-carousel::after {
                position: absolute;
                content: "";
                top: 0;
                right: 0;
                height: 100%;
                width: 0;
                background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                z-index: 1;
            }
            
            @media (min-width: 768px) {
                .testimonial-carousel::before,
                .testimonial-carousel::after {
                    width: 200px;
                }
            }
            
            @media (min-width: 992px) {
                .testimonial-carousel::before,
                .testimonial-carousel::after {
                    width: 300px;
                }
            }
            
            .testimonial-carousel .owl-nav {
                position: absolute;
                width: 350px;
                top: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                justify-content: space-between;
                opacity: 0;
                transition: .5s;
                z-index: 1;
            }
            
            .testimonial-carousel:hover .owl-nav {
                width: 300px;
                opacity: 1;
            }
            
            .testimonial-carousel .owl-nav .owl-prev,
            .testimonial-carousel .owl-nav .owl-next {
                position: relative;
                color: var(--primary);
                font-size: 45px;
                transition: .5s;
            }
            
            .testimonial-carousel .owl-nav .owl-prev:hover,
            .testimonial-carousel .owl-nav .owl-next:hover {
                color: var(--dark);
            }
            
            .testimonial-carousel .testimonial-img img {
                width: 100px;
                height: 100px;
            }
            
            .testimonial-carousel .testimonial-img .btn-square {
                position: absolute;
                bottom: -19px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .testimonial-carousel .owl-item .testimonial-text {
                margin-bottom: 30px;
                box-shadow: 0 0 45px rgba(0, 0, 0, .08);
                transform: scale(.8);
                transition: .5s;
            }
            
            .testimonial-carousel .owl-item.center .testimonial-text {
                transform: scale(1);
            }
            /*** Footer ***/
            
            .footer {
                color: #fff;
            }
            
            .footer .btn.btn-link {
                display: block;
                margin-bottom: 5px;
                padding: 0;
                text-align: left;
                color: #fff;
                font-weight: normal;
                text-transform: capitalize;
                transition: .3s;
            }
            
            .footer .btn.btn-link::before {
                position: relative;
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                margin-right: 10px;
            }
            
            .footer .btn.btn-link:hover {
                color: var(--light);
                letter-spacing: 1px;
                box-shadow: none;
            }
            
            .copyright {
                color: #fff;
                border-top: 1px solid rgba(255, 255, 255, .1);
            }
            
            .products-section {
                padding: 60px 0;
                background: #f9f9f9;
            }
            
            .section-title {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 25px;
                border-bottom: 2px solid #000;
                display: inline-block;
                padding-bottom: 6px;
            }
            
            .product-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
            }
            
            .product-card {
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                overflow: hidden;
                text-align: center;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .product-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            }
            
            .product-card img {
                width: 100%;
                height: 220px;
                object-fit: cover;
            }
            
            .product-name {
                background: #008000;
                color: #fff;
                font-weight: 600;
                padding: 10px 0;
                font-size: 16px;
            }
            
            .underline {
                width: 90px;
                height: 4px;
                background: #01945b;
                border-radius: 5px;
            }
            
            .popular .underline {
                width: 90px;
                height: 4px;
                background: #01945b;
                border-radius: 5px;
                margin-bottom: 10px;
                margin: 0 auto;
            }
            
            .testimonial .underline {
                width: 90px;
                height: 4px;
                background: #01945b;
                border-radius: 5px;
                margin-bottom: 10px;
                margin: 0 auto;
            }
            
            .why-choose-us {
                background: linear-gradient(180deg, #ffffff 0%, #f6fdf9 100%);
            }
            
            .why-choose-us .underline {
                width: 90px;
                height: 4px;
                background: #01945b;
                border-radius: 5px;
                margin-top: 10px;
            }
            
            .why-box {
                border-radius: 16px;
                background: #fff;
                box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
                transition: all 0.3s ease;
            }
            
            .why-box:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
            }
            
            .why-icon {
                width: 70px;
                height: 70px;
                margin: 0 auto;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 30px;
                color: #fff;
                background: linear-gradient(135deg, #01945b, #037f4a);
                box-shadow: 0 4px 14px rgba(1, 148, 91, 0.3);
            }
            
            @media (max-width: 768px) {
                .why-box p {
                    font-size: 14px;
                }
            }
            
            .trending-products {
                background: linear-gradient(180deg, #ffffff 0%, #f9fdfb 100%);
            }
            
            .trending-products .underline {
                width: 90px;
                height: 4px;
                background: #1fb239;
                border-radius: 5px;
            }
            
            .product-list ul li {
                padding: 12px 0;
                border-bottom: 1px solid #e0e0e0;
                font-weight: 500;
                transition: all 0.3s ease;
                font-size: 15.5px;
            }
            
            .product-list ul li:last-child {
                border-bottom: none;
            }
            
            .product-list ul li:hover {
                color: #01945b;
                transform: translateX(6px);
            }
            
            .product-list i {
                font-size: 15px;
            }
            
            @media (max-width: 768px) {
                .product-list {
                    margin-top: 30px;
                }
            }
            
            .scrollable-list {
                max-height: 310px;
                /* height adjust kar sakte ho */
                overflow-y: auto;
                scrollbar-width: thin;
                /* For Firefox */
                scrollbar-color: #00a16c #f0f0f0;
                /* green thumb on light bg */
                border-radius: 20px;
            }
            /* Chrome, Edge, Safari scrollbar style */
            
            .scrollable-list::-webkit-scrollbar {
                width: 6px;
            }
            
            .scrollable-list::-webkit-scrollbar-track {
                background: #f0f0f0;
                border-radius: 10px;
            }
            
            .scrollable-list::-webkit-scrollbar-thumb {
                background-color: #00a16c;
                border-radius: 10px;
            }
            /* Optional: list hover and spacing improvement */
            
            .scrollable-list li {
                padding: 8px 0;
                border-bottom: 1px solid #eee;
                transition: all 0.3s ease;
            }
            
            .scrollable-list li:hover {
                background: #f8fff9;
                padding-left: 6px;
                border-radius: 6px;
            }
            
            .form-control:focus {
                color: #5F656F;
                background-color: #fff;
                border-color: #008000;
                outline: 0;
                box-shadow: 0 0 0 .25rem rgb(53 152 89 / 49%);
            }
            
            .form-select:focus {
                color: #5F656F;
                background-color: #fff;
                border-color: #008000;
                outline: 0;
                box-shadow: 0 0 0 .25rem rgb(53 152 89 / 49%);
            }
            
            .form-select {
                border-radius: 8px;
                padding: 12px
            }
            
            .topbar-right a {
                color: #fff;
            }
            
            .contact-panel-form {
                background: #fff;
                padding: 30px;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                max-width: 800px;
                margin: 50px auto;
            }
            
            .contact-panel-form .form-control {
                border-radius: 8px;
                padding: 12px;
            }
            
            .contact-panel-form .btn-secondary {
                padding: 10px 20px;
                align-items: center;
                justify-content: center;
                color: var(--secondary);
                background: #357c59;
                color: #fff;
                border: none;
                box-shadow: 0 0 45px rgba(0, 0, 0, .09);
                z-index: 2;
            }
            
            .contact-panel-form .btn-secondary:hover {
                background-color: #0b461c;
            }
            
            .contact-panel-form textarea {
                min-height: 120px;
            }
            /* Potassium Chloride page */
            /* Content Area */
            
            .content-section h2 {
                font-weight: 600;
                margin-bottom: 20px;
                border-bottom: 2px solid #0b6b28;
                display: inline-block;
                padding-bottom: 5px;
            }
            
            h5.text-success {
                color: #000 !important;
            }
            
            .image-box img {
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                width: 100%;
            }
            /* Purpose / Why Choose Us */
            
            .highlight-box {
                background: #f8fdf8;
                border-left: 5px solid #0b6b28;
                border-radius: 10px;
                padding: 25px;
                transition: all 0.3s ease;
            }
            
            .highlight-box:hover {
                transform: translateY(-4px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            ul {
                list-style: none;
                padding-left: 0;
            }
            /*

ul li::before {
    content: "✔";
    color: #0b6b28;
    margin-right: 10px;
}
*/
            /* Footer */
            
            footer {
                background: #0b6b28;
                color: #fff;
                padding: 40px 0 10px;
            }
            
            footer h5 {
                color: #fff;
                margin-bottom: 15px;
                font-weight: 600;
            }
            
            footer a {
                color: #fff;
                text-decoration: none;
                transition: color 0.3s;
            }
            
            footer a:hover {
                color: #d4ffd4;
            }
            
            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                margin-top: 20px;
                padding-top: 10px;
                font-size: 14px;
                text-align: center;
            }
            /* ------------------------------
       Product Gallery Section
    ------------------------------ */
            
            .product-gallery {
                background-color: #f8f9fa;
                /* Light grey background */
                border-top: 2px solid #e0e0e0;
                border-bottom: 2px solid #e0e0e0;
                padding: 60px 0;
            }
            
            .product-gallery .main-image img {
                transition: transform 0.4s ease, box-shadow 0.3s ease;
                border-radius: 15px;
            }
            
            .product-gallery .main-image img:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }
            /* Thumbnail images */
            
            .thumbnail-images img {
                border: 2px solid transparent;
                transition: all 0.3s ease;
                border-radius: 10px;
            }
            
            .thumbnail-images img:hover {
                border: 2px solid #198754;
                /* ND Biotech green */
                transform: scale(1.05);
            }
            /* Active thumbnail (if clicked) */
            
            .thumbnail-images img.active {
                border: 2px solid #198754;
                box-shadow: 0 0 10px rgba(25, 135, 84, 0.3);
            }
            /* Responsive adjustments */
            
            @media (max-width: 576px) {
                .product-gallery .main-image img {
                    max-width: 90%;
                }
                .thumbnail-images {
                    gap: 1rem;
                    flex-wrap: wrap;
                }
                .thumbnail-images img {
                    width: 70px;
                    height: 70px;
                }
                .navbar .navbar-brand::after {
                    background-color: #ffffff00 !important;
                }
            }
            
            @media (max-width: 576px) {
                .contact-info {
                    text-align: center;
                }
                .contact-info .d-flex {
                    flex-direction: column;
                    align-items: center;
                }
                .contact-info .icon-box {
                    margin-bottom: 8px;
                }
                .contact-info a span {
                    display: block;
                    font-size: 15px;
                }
            }
            
            .industry-card {
                border: none;
                border-radius: 12px;
                transition: all 0.3s ease;
            }
            
            .industry-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
            }
            
            .industry-card img {
                border-radius: 12px;
                height: 270px;
                object-fit: cover;
            }
            
            .cta-section {
                background: #0d6efd;
                color: white;
                text-align: center;
                padding: 60px 0;
            }
            
            .industry-card {
                /* transform: translateY(-5px); */
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
            }
            
            .contact-icons {
                position: fixed;
                bottom: 20px;
                left: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                z-index: 9999;
            }
            
            .contact-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 50px;
                height: 50px;
                background-color: #FF5E14;
                color: #fff;
                border-radius: 50%;
                font-size: 24px;
                text-decoration: none;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
            }
            
            .contact-icons a:hover {
                transform: scale(1.1);
                background-color: #1eb139;
            }
            
            .footer .mb-2 a {
                color: #fff !important;
            }
            
            .footer .mb-2 a:hover {
                color: #FF5E14 !important;
            }
            
            .products-section a {
                color: #fff;
            }
            
            .btn-primary:hover {
                color: #fff;
                background-color: var(--primary);
                border-color: var(--primary);
            }
            
            .btn-primary {
                background-color: #1eb139;
                border-color: #1eb139;
            }
            
            .bg-primary {
                background-color: #1fb239 !important;
            }
            
            .text-primary {
                color: #000 !important;
            }
            
            .product-list .list-unstyled a {
                color: #000;
            }
            
            a.fw-semi-bold {
                color: #000;
            }
            
            @media (min-width: 320px) and (max-width: 400px) {
                .navbar .navbar-brand {
                    position: relative;
                    padding-right: 50px;
                    height: 75px;
                    display: flex;
                    background: #fff;
                    width: 150px;
                }
                .testimonial-carousel .owl-nav {
                    width: 100%;
                }
                .navbar-light .navbar-toggler {
                    border-radius: 5px;
                }
                .carousel-control-prev-icon,
                .carousel-control-next-icon {
                    width: 2.5rem;
                    height: 2.5rem;
                    background-color: var(--primary);
                    border: 15px solid var(--primary);
                    border-radius: 3.5rem;
                }
                .text-start p {
                    font-size: 18px;
                    font-weight: normal !important;
                    max-width: 90%;
                }
                .ms-4 {
                    margin-left: 0 !important;
                }
            }
            
            .fa-droplet:before {
                content: "\f493"
            }
            
            .highlight-box ul {
                list-style: none;
                /* default bullets remove karne ke liye */
                padding-left: 0;
            }
            
            .highlight-box ul li {
                position: relative;
                padding-left: 25px;
                /* icon ke liye space */
                margin-bottom: 10px;
                font-size: 16px;
                line-height: 1.5;
            }
            /* Custom icon */
            
            .highlight-box ul li::before {
                content: "\2192";
                /* checkmark symbol */
                position: absolute;
                left: 0;
                top: 0;
                color: #28a745;
                /* icon color, green */
                font-weight: bold;
                font-size: 18px;
            }